home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / WWBezierSurfaceOfRevolution.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  491 b   |  24 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5.  
  6. #import <appkit/appkit.h>
  7. #import <3Dkit/3Dkit.h>
  8. #import "Protocol_WWRenderable.h"
  9.  
  10. @interface WWBezierSurfaceOfRevolution:Object < WWRenderable >
  11. {
  12.   RtBound    boundingBox;
  13.   BOOL       dirtyBoundingBox;
  14.   int        howManyPoints;
  15.   RtPoint    *points;
  16.   RtInt      nPoints, bezierWidth;
  17.   RtPointer  patchMesh;
  18.   RtFloat    **coefficients;
  19.   id         myShape;
  20. }
  21.  
  22.  
  23. @end
  24.